-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linux: Report reclaimable memory to kernel as such #16385
Conversation
Linux provides SLAB_RECLAIM_ACCOUNT and __GFP_RECLAIMABLE flags to mark memory allocations that can be freed via shinker calls. It should allow kernel to tune and group such allocations for lower memory fragmentation and better reclamation under pressure. This patch marks as reclaimable most of ARC memory, directly evictable via ZFS shrinker, plus also dnode/znode/sa memory, indirectly evictable via kernel's superblock shrinker. Signed-off-by: Alexander Motin <[email protected]> Sponsored by: iXsystems, Inc.
Could we get one more reviewer on this one? |
While I think the changes (and goals!) make sense, I don't appear to be able to see a difference in either the kernel's accounting of free/available memory (casually tested via 'free' and similar) or general eviction behavior. Tested (as I said, casually - filling ARC, applying slow or fast memory pressure, applying non-ARC pagecache pressure, etc, eyeing 'free' and other end-user memory stat gatherers) with a Linux 6.8 kernel. Is there a specific stat or testing pattern where this is clearly functional and beneficial? Thanks. |
@adamdmoss SLAB_RECLAIM_ACCOUNT memory should be included into SReclaimable in /proc/meminfo and then into available memory, which as I see should be used by different balloon drivers. __GFP_RECLAIMABLE I haven't found to be reported directly, but I understand it to be grouped together as Reclaimable migration type, as reported in /proc/pagetypeinfo. |
Thanks, that makes some sense. |
Linux provides SLAB_RECLAIM_ACCOUNT and __GFP_RECLAIMABLE flags to mark memory allocations that can be freed via shinker calls. It should allow kernel to tune and group such allocations for lower memory fragmentation and better reclamation under pressure. This patch marks as reclaimable most of ARC memory, directly evictable via ZFS shrinker, plus also dnode/znode/sa memory, indirectly evictable via kernel's superblock shrinker. Signed-off-by: Alexander Motin <[email protected]> Sponsored by: iXsystems, Inc. Reviewed-by: Tony Hutter <[email protected]> Reviewed-by: Allan Jude <[email protected]>
…6385)" This reverts commit d4b5517. Signed-off-by: Pavel Snajdr <[email protected]>
Linux provides SLAB_RECLAIM_ACCOUNT and __GFP_RECLAIMABLE flags to mark memory allocations that can be freed via shinker calls. It should allow kernel to tune and group such allocations for lower memory fragmentation and better reclamation under pressure.
This patch marks as reclaimable most of ARC memory, directly evictable via ZFS shrinker, plus also dnode/znode/sa memory, indirectly evictable via kernel's superblock shrinker.
Types of changes
Checklist:
Signed-off-by
.